home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 3
/
Gold Medal Software - Volume 3 (Gold Medal) (1994).iso
/
graphics
/
3dvect30.arj
/
TGA2ICON.ARJ
/
STRLEN.RT
< prev
next >
Wrap
Text File
|
1993-01-09
|
477b
|
22 lines
public _strlen
;░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
; Get length of ASCIIZ string
; In:
; EDX -> string
; Out:
; EAX - length
;░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
_strlen:
push ecx
push edi
mov edi,edx
mov ecx,-1
xor al,al
repnz scasb
mov eax,-2
sub eax,ecx
pop edi
pop ecx
ret